home *** CD-ROM | disk | FTP | other *** search
/ Almathera Ten Pack 3: CDPD 3 / Almathera Ten on Ten - Disc 3: CDPD3.iso / scope / 201-220 / scopedisk202 / 2400zi / mountlist < prev    next >
Text File  |  1995-03-19  |  2KB  |  62 lines

  1. /*
  2.    This is for accessing the Supra 2400zi modem at the DOS level.
  3.    If the software you are using requires a DOS level interface,
  4.    copy the mdm-handler file from the SupraModem disk to your l:
  5.    directory.  Then add the MDM: entry provided below to the
  6.    MountList in your devs: directory.
  7.  
  8.    You may specify the desired baud rate,databits,parity,stopbits
  9.    when you open the device...
  10.     
  11.           mdm:set/1200/8/N/1
  12.       
  13.    This would open the mdm: device at 1200 baud, 8 bits, no parity,
  14.    and 1 stop bit.
  15.       
  16.       Allowable baud rates :  2400, 1200, 600, 300
  17.       Allowable databits   :   8, 7
  18.       Allowable parity     :   N,E,O    (None,Even,Odd)
  19.       Allowable stopbits   :   1,2
  20.   
  21.    You may specify whether you want the handler to echo the characters
  22.    back or not.  The default will echo.  To turn off the echo...
  23.    
  24.           mdm:NOECHO
  25.       
  26.    You may also specify whether you wish to pass everything through
  27.    without interpretation (RAW mode).  To do this...
  28.    
  29.           mdm:RAW
  30.       
  31.  
  32.    You may mix and match between the baudrate setup,noecho and raw
  33.    when opening the device...
  34.    
  35.           mdm:set/2400/8/e/1/NOECHO/RAW
  36.  
  37.    Note: If you attempt to startup a cli on the modem, set the modem
  38.    up using a terminal program by issuing the commands:
  39.    
  40.           ATS0=1      (to answer the phone)
  41.           ATQ1        (to turn off result codes)
  42.           ATE         (to turn off echo)
  43.        
  44.        
  45.    You may then do
  46.  
  47.           newcli mdm:
  48.    
  49.    to startup a cli on the modem.
  50.            
  51. */
  52.  
  53. MDM:      Handler = L:Mdm-Handler
  54.           Stacksize = 4000
  55.           Priority = 5
  56. #
  57.  
  58.  
  59.  
  60. NOTE:  Some people have had problems making the mdm-handler work.  We are
  61.        trying to find the solution, but at this time do not have one.  5/10/91
  62.